Kameleon-Plus  0.3.2
SWMFIono.h
Go to the documentation of this file.
1 /*
2  * SWMFIono.h
3  *
4  * Created on: May 25, 2012
5  * Author: David Berrios
6  */
7 
8 #ifndef _SWMFIono_h
9 #define _SWMFIono_h
10 
11 #include "Model.h"
12 #include <vector>
13 #include <string>
14 
15 namespace ccmc{
16 
17 
18  class SWMFIono: public Model
19  {
20 
21  public:
22  SWMFIono();
23  long open(const std::string& filename);
25  const std::vector<std::string> getLoadedVariables();
26 
27  virtual ~SWMFIono();
28 
29  protected:
31  void initializeSIUnits();
32 
33  private://
34 
35 
36 
37  };
38 
39 
40 
41 }
42 #endif